home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Cursor / CursorUser.cp < prev    next >
Text File  |  2000-06-23  |  231b  |  18 lines

  1. // CursorUser.cp
  2.  
  3. #ifndef CursorUser_h
  4. #include "CursorUser.h"
  5. #endif
  6.  
  7. #include <QuickDraw.h>
  8.  
  9. CursorUser::CursorUser()
  10.   {
  11.     static bool initialized = false;
  12.     if ( !initialized )
  13.       {
  14.         InitCursor();
  15.         initialized = true;
  16.       }
  17.   }
  18.